crypto/internal/fips140/hmac.HMAC.inner (field)

13 uses

	crypto/internal/fips140/hmac (current package)
		hmac.go#L32: 	outer, inner fips140.Hash
		hmac.go#L51: 	switch h.inner.(type) {
		hmac.go#L58: 	in = h.inner.Sum(in)
		hmac.go#L73: 	return h.inner.Write(p)
		hmac.go#L77: func (h *HMAC) BlockSize() int { return h.inner.BlockSize() }
		hmac.go#L81: 		if err := h.inner.(marshalable).UnmarshalBinary(h.ipad); err != nil {
		hmac.go#L87: 	h.inner.Reset()
		hmac.go#L88: 	h.inner.Write(h.ipad)
		hmac.go#L103: 	marshalableInner, innerOK := h.inner.(marshalable)
		hmac.go#L134: 	hm.inner = h()
		hmac.go#L141: 		if hm.outer == hm.inner {
		hmac.go#L148: 	blocksize := hm.inner.BlockSize()
		hmac.go#L164: 	hm.inner.Write(hm.ipad)